.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 40px;
    gap: 30px;
}


.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.footer-contact-item {
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .footer-contact-item i {
        width: 18px;
        color: var(--accent-color);
    }

.footer-section p {
    margin-bottom: 20px;
    color: #ccc;
}

.footer-section ul li {
    margin-bottom: 10px;
}

    .footer-section ul li a {
        color: #ccc;
        transition: color 0.3s;
    }

        .footer-section ul li a:hover {
            color: white;
        }

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: background-color 0.3s;
    }

        .social-icons a:hover {
            background-color: var(--accent-color);
        }

.newsletter input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    background: linear-gradient(180deg, #0f172a, #0b1220);
}

footer {
    background: linear-gradient(180deg, #045427, #0b1220);
    color: white;
    padding: 60px 0 20px;
}
@media (max-width: 768px) {
    
}